# Makefile for bsdscan
# author: fflewddur <fflewddur@linuxfreak.com>
# released under version 2 of the GPL.  a copy
# of this licsense should be distrbuted with
# this file, but if one was not, a copy can
# be found at www.gnu.org


bnuview:
	gcc -o bnuview bnuview.c -lvga -I.
install:
	cp bnuview /usr/local/bin/bnuview
clean:
	rm -f *.o *.core bnuview
uninstall:
	rm -f /usr/local/bin/bnuview
